When I set the properties of webgrid in quick design / design mode it doesn't reflect those properties in code.It shows the default properties only. I am not able to set the properties from design mode of Ultrawebgrid.
Are you sure you are not in Debug mode while you are trying to set these properties? This behaviour seems as if you are.
I tried to add client side events for Ultra web grid both in debug and release modes.When I add any event handler it adds javascript function template.Function of client side event is available in quick design mode of ultrawebgrid.But in source code I couldn't find that attribute.
For instance I added BeforeXmlHttpRequest client side event handler.It shows in quick design mode.Function is added on client side.But I am not able to find out that function in grid attributes.
Thanks in advance.
You might not be able to get to them as attribute until you manually add them?
With Me.UltraWebGrid1.Attributes
.Add("XmlHTTPResponseHandler", "UltraWebGrid1_XmlHTTPResponseHandler();")
// etc...
End With
Just Guessing here...