Ask a Question related to ASP.NET General, Design and Development.
-
Ric Pullen #1
Javascript and server calls
Is it possible to have a button run client side script and then depending
if its valid allow the postback to continue otherwise it prompts the user.
I know this sounds like a validation issue but its not possible to do it
with the validation components.
I use infragistics webgrid and i want to test if there is an active row...
if so then I will allow a postback otherwise prompt the user to select one.
I have already assigned the javascript with the following code
btnEdit.Attributes.Add("onclick", "javascript:EditRowSelectedCheck()")
Cheers.
Ric Pullen Guest
-
Server Side Includes and Javascript
Can one safely include javascript in a server-side include (SSI) file? It seems to work but don't know if it will create problems down the line. I... -
SOAP calls to a server from a Windows Forms app
Hello All, I'm building a COM object using C# and I need to communicate with a server via SOAP. Unfortunately, all of the samples that I've... -
multiple calls to getURL("javascript:<functionN>")
Calling getURL with a javascript command more than once will result in one of the calls to getURL not executing. For example, create a sample... -
Creating Controls with Javascript and getting to them from the server.
Maybe I did this wrong. I think I did but I built some textbox controls using Javascript and I call the javascript function that builts and adds... -
firing event on server via javascript
Hi all is there any possiblity of doing this ? for example,i have handler procedure defined in codebehind : protected sub proc(sender as... -
Anatoly #2
Re: Javascript and server calls
1)There is much better place to ask questions related to infragistics:
[url]http://www.infragistics.com/support/newsgroups.asp[/url].
2)
function IsSelected(){
var grid = igtbl_getGridById(GridId);
return (grid.getActiveRow() != undefined);
}
GridId here string(Id of UltraWebGrid)
HTH
"Ric Pullen" <Richard.Pullen-REMOVESPAM@Hospital.nhs.uk> wrote in message
news:uS0a6KFTDHA.940@TK2MSFTNGP11.phx.gbl...one.> Is it possible to have a button run client side script and then depending
> if its valid allow the postback to continue otherwise it prompts the user.
>
> I know this sounds like a validation issue but its not possible to do it
> with the validation components.
>
> I use infragistics webgrid and i want to test if there is an active row...
> if so then I will allow a postback otherwise prompt the user to select>
> I have already assigned the javascript with the following code
> btnEdit.Attributes.Add("onclick", "javascript:EditRowSelectedCheck()")
>
> Cheers.
>
>
Anatoly Guest



Reply With Quote

