Hi,
I am trying to use the Expression without the initial use of a RadGridView.
Looked over Expression editor without gridview for the base inheritance.
The event ExpressionEditorFormCreated is never called.
I'm registering the hidden radGridView.ExpressionEditorFormCreated in the constructor of the form.
Thanks
Code:
public
partial
class
FormulaEditor : RadExpressionEditorForm
{
private
static
RadGridView hiddenGrid;
private
static
GridViewDataColumn dataColumn;
public
FormulaEditor()
:
base
(dataColumn)
{
InitializeComponent();
hiddenGrid =
new
RadGridView();
dataColumn =
new
GridViewTextBoxColumn();
hiddenGrid.Columns.Add(dataColumn);
hiddenGrid.Rows.AddNew();
hiddenGrid.ExpressionEditorFormCreated += HiddenGrid_ExpressionEditorFormCreated;
}
private
void
HiddenGrid_ExpressionEditorFormCreated(
object
sender, ExpressionEditorFormCreatedEventArgs e)
{
e.ExpressionEditorForm.FormElement.TitleBar.FillPrimitive.BackColor = Color.Red;
e.ExpressionEditorForm.ShowIcon =
false
;
ExpressionItemsList.Clear();
//base.LoadFieldList(null);
if
(FieldList !=
null
&& !FieldList.Any())
{
FieldList.Clear();
}
if
(radTreeViewFunctions.Nodes.Any())
radTreeViewFunctions.Nodes.Clear();
}
}
I installed the demo of Telerik's UI WinForms components and then removed it on one Win10 pc with VS 2017 Community Edition. After removal, my instance of VS started to show about 10 message boxes telling me that various Telerik assemblies like Telerik.WinControls.VSPackage.2018.1.115.1 cannot be loaded at startup. How to clear all remnants of Telerik extensions left by the uninstaller?
Attached is the corresponding part of the VS startup log (the ActivityLog.xml file from the VS folder).
Hi,
I know about export to PDF, but is it possible to print PivotGrid directly to PDF file, with headers/footers/watermarks, etc?
Thanks,
Alex
Hello,
I'm binding objects to a GridView, but i need to create properties for my objects at runtime, because I won't know what properties the object has or how many. (This is a plugin for Autodesk Revit.) I was able to implement the PropertyBag method here which is working https://www.codeproject.com/Articles/12282/Implementing-a-PropertyBag-in-C But the GridView just sees "PropertyBag" as one of the properties. I'm trying to figure out how to get (or if) the GridView to read these 'subproperties'. I can create columns for each property in runtime but the cells are blank. Or if it makes sense to set the cell value of the row based on the column's name. Thanks.
ListViewDataItem item = lv.Items[pos];
item[
"Variety"
] =
this
[id] ;
lv.Update();
lv.Refresh();
I have implemented the drag and drop row feature of telerik grid. Now i have to comfirm/prompt user for drag and drop row action with some message like 'Are you sure to drag the selected row?'
I have implemented below two events for the same
1) Client Side:
function onRowDropping(sender, args) {
// some code to do something
}
2) Code behind:
protected void grd_RowDrop(object sender, GridDragDropEventArgs e)
{
// some code to do something
}
So, Please suggest how can we achieve this functionality.
1) Once user attempt to drag and drop the row, a confirmation popup should come.
2) If user confirm the action row should be dropped and re-ordered.
3) Else action should be reverted from client side itself.
Any help would be highely appriciated.
Thnaks,
Manish