We are currently experiencing performance issues where we are using the RAD AJAX stuff inside of a page that resides in the layouts folder of a SharePoint server and loads up a SharePoint master page.
We created a very basic master page in SharePoint that had everything stripped out of it and the AJAX stuff runs in 1/2 the time.
The AJAX Panel resides within the content page and not within the master page so my understanding is the response we get back from the ASYNC postback should be identical no matter what master page is loaded. Using Fiddler, we see that the response stream is 3-4% larger when it is executed with the larger master page.
So here are my questions...
Thanks,
this.dateTimePicker.ClientEvents.OnPopupOpening = "$find('" + anotherControl.ClientID + "').SetDate"; |
Type.registerNamespace('FluTel'); |
| FluTel.DateTimePicker = function(element) |
| { |
| this._innerControl = null; |
| this.first_name = "adam"; |
| this.last_name = "drda"; |
| FluTel.DateTimePicker.initializeBase(this, [element]); |
| } |
| FluTel.DateTimePicker.prototype = { |
| initialize : function() |
| { |
| FluTel.DateTimePicker.callBaseMethod(this,'initialize'); |
| // var element = this.get_element(); |
| // Sys.Debug.fail(""); |
| }, |
| dispose : function() { |
| $clearHandlers(this.get_element()); |
| FluTel.DateTimePicker.callBaseMethod(this, 'dispose'); |
| }, |
| SetDate : function() |
| { |
| this._innerControl = $find(this.get_element().innerControlId); |
| alert("I am here " + this._innerControl); |
| } |
| } |
| FluTel.DateTimePicker.registerClass('FluTel.DateTimePicker', Sys.UI.Control); |
| if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded(); |
this.dateTimePicker.ClientEvents.OnPopupOpening = "runSetDate"; |
<script> |
| function runSetDate() |
| { |
| $find('thatObjectId').SetDate(); |
| } |
| </script> |

I want to show Sort Icon on a column by default when the RADGrid loads for the firsttime. Currently, the Sort Icon appears only after I click it. Is there any property of RADGrid that shows Sort Icon by default?