Hi,
Iam new to infragistics ,iam using infragistics 2009.I have used ultrawebspliiter actually i created this dynamically.iam getting a error like
"the "Websplitter Initialize" for Initialize should be a function,function name ,or function text"
iam not getting this error often but sometimes this error is displayed once i tried to open the new tab.can u please suggest some idea to overcome this error.
Thanks,
Rajesh
Hi Rajesh,
If you process ClientEvents.Initialize or similar events, then the best is to put implementation of that handler into <head> (regardless how you create splitter).
<script type="text/javascript"> function initSplitter(splitter) { }</script>
This problem is solved by first placing all event functions in the html <head> tag, and, all functions should be in separate script tags.
<head runat="server">
<script type="text/javascript">
function event_x {
}
</script>
function event_y {
<head>