Sorry, but there are no more tags available to filter with.
-
What would be the best editor to edit a list of strings (separated by new line i.e. enter key). The return value (i.e. the value that needs to be stored in the database) should be comma delimited. This means that the strings are displayed one on a line in the editor (when the editor is showed) but showed...
-
Thanks for the reply. When the value in the first column is set, that object has a list of allowable values for the second column. So I have to populate the second column with those allowable values and then select the value depending upon the value from the datasource of the grid. Then once the first...
-
Here are my requirements: 1) Have a combo box inside a grid. This is populated from a list of objects (that have a typeid and typename). 2) This grid is databound to a different list of objects that contains the object in 1). When the form is displayed, the drop down should be populated with the list...
-
Sorry this is a simple problem and it has been solved by setting FieldName property for each column in the gridveiw. If you face the same problem just set the gridview1.FieldName property to the same name which you are binding that column with the datsource. Thanks, M.Ansar Hussain
-
hi i have Xtragrid on my form for one column i have added a repository lookup which is loading the datasource in constructor itself. The problem is when we select a value from that repository and move to cell the value has not bee updated to the grid cell it is like disappeared. Thanks inadvance,
-
No. The EditValueChanged does not get called. As you can see from the Stack Trace that I have attached as a picture that it happens in External Code (the code that is in lighter font weight).You can see in the stack trace 'what' causes it. This does not happen in the code I have written. As you...
-
The user is editing data inside a datagrid contained inside a user control. So: User edits a value inside a spin edit and then clicks the save button. At this point in time, I save the object to the database and reset the object to clean and then hide the user control (which contains the datagrid containing...
-
This gives the desired behavior but causes another issue: After updating the object, I save the object to the database and hide the control (by calling Control.Hide()) from the user. As soon as the Hide is called, some how the object gets dirty again. This happens in the external code. You can see in...
-
In case of repository spin edit, I want to update the datasource as soon as a value is changed but I also want the user to be able to continue to edit the value in the editor. The problem I am running into is that as soon as I call GridView.RefreshData, the cursor inside the editor disappears. How can...
-
The error happens in external code after the execution leaves that that event handler. So e is not null, e.NewValue is not null. ServiceGroupGridView is not null, RankValueRepositoryEnabledSpinEidt is not null or its min value is not null or Steerage Ranking is not null. The error does not happen on...