or

Hi,
How can I set the filename (arguments) that gets sent to the client callback from the ImageEditor?
i.e. from : $find('<%= ImageEditor1.ClientID %>').open('ImageEditor', args, callbackFunction);
On the server side, i couldnt find a SetFileName method...
I tried returning the filename from the StoreBitmap method (just for fun), but it didnt work.
Can you guys please help me on this? thanks in advance.
' build grid Dim FieldListList As SqlDataReader = kpiSQL.getReader("select * from dbo.kpi_QuantityColumn where tableid=" & tableid.ToString) While FieldListList.Read Select Case FieldListList("fielddataType") Case 6 ' is a string column Dim boundColumn As GridDropDownColumn boundColumn = New GridDropDownColumn() boundColumn.EmptyListItemText = "--type or choose--" ' allowcustomtext??? boundColumn.UniqueName = FieldListList("FieldName") boundColumn.DataField = FieldListList("FieldName") boundColumn.DropDownControlType = GridDropDownColumnControlType.RadComboBox boundColumn.HeaderText = FieldListList("FieldName") boundColumn.HeaderStyle.Wrap = False Dim presetReader As SqlDataReader = kpiSQL.getReader("SELECT DISTINCT " & FieldListList("FieldName") & " FROM " & thisTable.dbTableName) ' ???? how do I bind the combo to presetReader? RadGrid1.MasterTableView.Columns.Add(boundColumn)
Case Else ' is a numeric column Dim boundColumn As GridNumericColumn boundColumn = New GridNumericColumn() RadGrid1.MasterTableView.Columns.Add(boundColumn) boundColumn.UniqueName = FieldListList("FieldName") boundColumn.DataField = FieldListList("FieldName") Dim prefix As String = "" If Not IsDBNull(FieldListList("prefix")) And FieldListList("FieldName") <> "" Then prefix = " (" & FieldListList("prefix") & ")" End If boundColumn.HeaderText = FieldListList("FieldName") + prefix boundColumn.HeaderStyle.Wrap = False boundColumn.DataFormatString = "{0:N" & FieldListList("NumberOfDps") & "}" End SelectEnd While