Quantcast
Channel: DevExpress Support Center (Examples)
Viewing all 7205 articles
Browse latest View live

How to implement CRUD operations using XtraGrid and LinqServerModeSource

$
0
0

This example demonstrates how to implement create, update and delete operations using XtraGrid and LinqServeModeSource.

This example works with the standard SQL Northwind database.

Question Comments

Added By: Mabaega Eg at: 2/26/2016 11:13:28 AM    hi ..

i just try this example.
This works, but I can not change EditValue of TextEdit programmaticaly.
As
textEdit3.EditValue = "My Address"

textEdit3 always reset when I typed in other TextEdit. Is there any way that I can fill TextEdit programmaticaly?

Please guide me...
Thanks. 

ASPxGridView - How to implement navigation by Up/Left/Down/Right buttons when the Batch Edit mode is used

$
0
0
In this example, ASPxGridView is used in Batch Edit mode. This feature allows users to move focus from one editable cell to another. Navigation is performed by the Up/Left/Down/Right buttons.

MVC:
GridView - How to implement navigation by Up/Left/Down/Right keyboard arrows in the Batch Edit mode
Question Comments

Added By: Corby Nichols at: 11/12/2015 6:18:46 AM    

Thank you very much, I will try your example over the weekend when I have more time to experiment.

For now I disabled the Mouse Wheel with AllMouseWheel = false and set the Increment to 0 and the Large Increment to 0 and it works.

Added By: Vova (DevExpress Support) at: 11/12/2015 6:42:04 AM    

You are welcome! If you have additional questions, feel free to create a separate ticket. We are here to address your inquiries.

How to create a 2D Full-Stacked Bar chart

$
0
0

The following example demonstrates how to create a 2D Full-Stacked Bar chart.

Question Comments

Added By: Coen Smits 1 at: 2/28/2016 8:34:38 AM    Wow.. that's spectacularly useless.. How about something about the binding?!Added By: Alex (DevExpress Support) at: 2/28/2016 11:53:33 PM    Hi Coen,

It should be possible to generate a similar chart layout when the Series.Points collection is populated from a data source (see Bind a Series to a Data Source). If you need further assistance, feel free to ask. We will be happy to help you.

How to: Implement Custom Permission, Role and User Objects

$
0
0

This example illustrates how to create custom security objects, such as permissions, roles and users. We will implement a permission that allows administrators to secure the exporting functionality in an XAF application. The complete description is available in the How to: Implement Custom Permission, Role and User Objects topic.

Question Comments

Added By: Leong Vai Long at: 4/30/2014 3:24:41 AM    

Hi DX,
How can I rename these 7 SecuritySystem* tables in database?
How to change their Oid to Int64 instead of GUID? My other BOs are inheriting from XPObject.
Thanks.

Added By: Konstantin B (DevExpress) at: 4/30/2014 4:08:08 AM    Hi Leong,
You can implement security system classes from scratch and use a key propety of a requred type instead of inheriting built-in classes: How to: Implement a Custom Security System User Based on an Existing Business ClassAdded By: Amin Baig at: 2/28/2016 9:04:22 AM    Hi,

How can this example be used to create a role which can create new users. I know the Administrator can create users, but then Administrator role has complete visibility of everything.

In my scenario, the Administrator role is only for the system owner that is myself, and my system is a cloud based multi-tenant system. So I have to create a role which can create new users, but does not have full control on everything.

Regards. Added By: Konstantin B (DevExpress) at: 2/28/2016 11:29:35 PM    Hi Amin,

In your scenario, you can create a security role and grant it write permissions for a user type.

Added By: Amin Baig at: 2/29/2016 2:21:24 AM    Hi Konstantin,

Can you guide me to an example/demo on how this can be achieved?

Regards. Added By: Konstantin B (DevExpress) at: 2/29/2016 2:30:15 AM    

I am afraid we have no separate example for this scenario, but actually it does not differ from granting permissions for any other business object type. A security system user is a regular business object and there is no need to grant access to it in some special way. In the context of the current example, the security system user type is Employee.

How to add a watermark with a text or image to the document

$
0
0

This example illustrates how you can add a watermark to the document. The main idea is to add a corresponding Floating Object (TextBox or Picture) to the header section (see SubDocument essentials - simple examples). Take special note of the TextRenderer.MeasureText Method, which is used to calculate the correct size of a textual watermark.

See Also:
SubDocument.InsertPicture Method
SubDocument.InsertTextBox Method

Question Comments

Added By: TRAINEAU SOIZIC at: 10/24/2012 3:42:24 AM    

Don't work for me with the last build :
the text on the page (the real one : not the watermark text) disapears from left to right when zooming ... try to set the zoom at 200 %

Added By: TRAINEAU SOIZIC at: 10/24/2012 3:45:14 AM    

in fact it seems that it is a horizontal scrollbar problem ... try to zoom and play with Hscrolling

Added By: Anders Wang at: 9/4/2014 11:57:01 PM    

But, After you save as it to word, You can see the layout is corrupted by the watermark. So how to deal with it?

Added By: Elliot (DevExpress Support) at: 9/5/2014 6:32:17 AM    

Hello,

To process your recent post more efficiently, I created a separate ticket on your behalf: T147935: Corrupted document layout. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Anders Wang at: 9/23/2015 10:53:07 PM    

Hi,
for text watermark with chinese font (Simhei), your following shapesize calculaition code caused clipped watermark. The text cannot be fully displayed. Could you please help us? Thanks.
          Size sizeInPixels = TextRenderer.MeasureText(text, measureFont);
          shape.Size = new SizeF(Units.PixelsToDocumentsF(sizeInPixels.Width, richEditControl.DpiX), Units.PixelsToDoc

Added By: Andrey (DevExpress Support) at: 9/24/2015 8:18:12 AM    

Hello,
The issue occurs depends on the value returned by the standard System.Window.Forms.TextRenderer.MeasureText method and doesn't rely on our products.
To resolve the issue, increase a shape size as follows:

[C#]
shape.TextBox.Document.EndUpdateCharacters(cp);shape.TextBox.HeightRule=TextBoxSizeRule.Auto;shape.RotationAngle=-45;SizesizeInPixels=TextRenderer.MeasureText(text,measureFont);shape.Size=newSizeF(Units.PixelsToDocumentsF(sizeInPixels.Width,richEditControl.DpiX)+ 10,Units.PixelsToDocumentsF(sizeInPixels.Height,richEditControl.DpiY));


Please try this solution and let me know your results. 

Added By: Anders Wang at: 9/24/2015 6:23:53 PM    

Hi,
Really? Do you have check "Units.PixelsToDocumentsF"?

Added By: Andrey (DevExpress Support) at: 9/25/2015 4:17:41 AM    

Hello,
I have researched the issue and came to the conclusion that the cause of the issue is rounding of the shape size on its rendering.
To resolve the issue, set the RichEditControl.LayoutUnit property to DocumentLayoutUnit.Document in the example's SetTextWatermark method without any other modifications.

Added By: Anders Wang at: 9/27/2015 6:37:10 PM    

Hi,
Set  RichEditControl.LayoutUnit doesn't work for me. The Text Water mark (Simhei)  are still clipped.

Added By: Andrey (DevExpress Support) at: 9/28/2015 12:37:18 AM    

Hello,
To process your recent post more efficiently, I created a separate ticket on your behalf: T294138: The E4184 example doesn't work properly with the 'Simhei' font. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Andrew Bingham 2 at: 2/29/2016 3:44:23 AM    This code throws an exception  "specified document position or range belongs to other document or subdocument" Added By: Andrey (DevExpress Support) at: 2/29/2016 4:09:31 AM    

Hello,
To process your recent post more efficiently, I created a separate ticket on your behalf: T350978: 'Specified document position or range belongs to other document or subdocument' error occurs on running the E4184 example. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

ASPxSpreadsheet - How to save and load documents from a database

$
0
0

UPDATED:

This code example demonstrates how to save and restore ASPxSpreadsheet documents from a database using a Binary column.
Starting with version 15.1, it is possible to use the ASPxSpreadsheet.Open method to load a document and call the ASPxSpreadsheet.SaveCopy method to save changes.

In version 15.2, it is also possible to handle the ASPxSpreadsheet.Saving event to save a document by clicking the ribbon's built-in Save button.


For Older Versions:

Use ISpreadsheetComponent.LoadDocument to load a document and ISpreadsheetComponent.SaveDocument - to save it.

See also:
T190813: Spreadsheet - How to save and load documents from a database

How to select/unselect all check boxes using the check box in the GridColumn header

$
0
0

Starting with version 14.2, GridControl provides Selector Column out of the box. To show this column, set the TableView.ShowCheckBoxSelectorColumn property to true.

For version older than 14.2, to achieve this functionality, it is necessary to create a check edit unbound column, place a check edit in the column header, and select/unselect all check boxes using one check box in the header. You can get more information about this approach in the following KB article: How to implement multiple row selection behavior via a checked column.

Question Comments

Added By: Alexander (DevExpress Support) at: 5/17/2012 7:06:37 AM    

Hi all,

I have updated this solution to improve usability. I have created an attached behavior that can be used with ease. Simply add RowSelectionBehavior and to DXGrid to enable this functionality.

Added By: Charles Cuozzo at: 5/17/2012 8:10:03 AM    

This solution does not work for me. I am not including a Guid with the data supplied for an ItemsSource to the grid. What's more, the grid is implemented as a control template for the LookUpEdit control. I need to have a "select all" as well as check boxes in each row to either select all rows with a single click or select individual rows.

Added By: Alexander (DevExpress Support) at: 5/21/2012 3:16:28 AM    

Hi Charles,

Would you please create a separate ticket regarding this issue. We will research it and do our best to find the most appropriate solution according to your needs.

Added By: xiebbs xiebbs at: 9/9/2014 5:35:09 AM    

How to do for Winform ?

Added By: Andrey K (DevExpress Support) at: 9/9/2014 7:10:45 AM    I have created a separate ticket on your behalf in order to provide quicker and more efficient responses. We will answer you here: T148936: How to select/unselect all check boxes using the check box in the GridColumn header

Thanks,
AndreyAdded By: David_1 at: 3/9/2015 3:11:03 AM    

This does not work if in the SelectionView you set AllowEditing=False

Added By: Ivan (DevExpress Support) at: 3/9/2015 3:25:06 AM    

I see that you posted the same question in the T217070 ticket. Let's continue our discussion there.

Added By: Fs Developer at: 8/28/2015 10:40:27 AM    

Hi:

How can I specify a header text next to the checkbox, because I tried the Header property but nothing is displayed.

Added By: Alexander S (DevExpress Support) at: 8/28/2015 11:31:04 AM    

Hello,

To process your recent post more efficiently, I created a separate ticket on your behalf: T283649: How to add text into the SelectAll column header. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

OData service - How to use stored procedures

$
0
0

This example illustrates how to use stored procedures with OData. You can learn how to map an entity to a stored procedure in this blog: Stored Procedures in the Entity Framework. This blog describes how to expose a stored procedure in the OData service: oData and Stored Procedures aka Service Operations. We suggest that you use the DevExtreme WCF OData Service project template when creating the OData service.


To execute a web method of the OData service, use the ODataStore.get method. For example:

[JScript]
store.get("TestOperation", { param1: 123, param2: "abc"}).done(...);

 


Here is a good blog describing how to configure the method so it supports the JSON format: Creating a .NET WCF 4.0 JSON Service.

Question Comments

Added By: Enderson Salas at: 8/25/2014 9:23:07 AM    

Can I use this to a stored procedure with a insert?

Added By: Marion (DevExpress Support) at: 8/26/2014 2:26:39 AM    

Hello Enderson,

To process your recent post more efficiently, I created a separate ticket on your behalf: T144008: OData service - How to use a stored procedure to insert data. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Chandru Nagrani 2 at: 12/26/2014 10:39:35 AM    

CustOrderHist_Result Where is this defined ? Thanks

Added By: Uriah (DevExpress Support) at: 12/29/2014 12:33:27 AM    

Hello Chandru,

To process your recent post more efficiently, I created a separate ticket on your behalf: T191552: Where is defined CustOrderHist_Result class?. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Kulasekaran K at: 5/17/2015 11:11:39 AM    

Hi

In below example in dataservice.svc.cs file there is only get method.can u suggest me how to handle update and delete record ?

Added By: Nikolai (DevExpress Support) at: 5/18/2015 1:58:20 AM    Hi Kulasekaran,

Please refer to the ASP.NET WebAPI vs WCF OData ticket where we discussed a similar issue.Added By: York Leung at: 8/10/2015 11:06:28 AM    

Hi,

can you tell me how to do the group on cust-order-hist.dxview dxList by ProductName , how to group the dataSource on cust-order-hist.js?

Added By: Marion (DevExpress Support) at: 8/11/2015 1:17:44 AM    

@York,

To process your recent post more efficiently, I created a separate ticket on your behalf: T276861: dxList - How to group data. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Yoaldis Pena 3 at: 11/2/2015 12:33:23 PM    

I have a question. Do i have to generate manually a cust-order-hist-view-model.js or I can generate automaticly

Added By: Marion (DevExpress Support) at: 11/2/2015 9:52:50 PM    

@Yoaldis,

To process your recent post more efficiently, I created a separate ticket on your behalf: T307194: OData service - How to use stored procedures - How to create a View. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

Added By: Réal Chartarnd at: 3/1/2016 5:40:16 AM    It would be nice if your examples work. 

How to export the colored ASPxGridView

$
0
0

UPDATED:

Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Use ASPxGridView.FormatCondition rules to define conditional formatting in Browse Mode and keep the applied appearance in the Exported Document. Please refer to the ASP.NET Grid View - Data Range Filter, Adaptivity and More (Coming soon in v15.2) blog post and the Export with Format Conditions demo for more information.
If you have version v15.2+ available, consider using the built-in functionality instead of the approach detailed below.

If you need to apply custom appearance in the Exported Document only or define fine tuned complex appearance (for instance, based on some runtime calculated values, custom business rules, etc.), use the ASPxGridViewExporter.RenderBrick event in the WYSIWYG export mode.

See Also:
T262239: ASPxGridView - How to export a colored grid when the Data Aware export mode is used

Question Comments

Added By: Smitha at: 5/30/2014 9:37:00 AM    

But how do I make the font to bold and also underline the text. If I do , it doesn't work. I get the error that the property is a read only one.
e.BrickStyle.Font.Bold = true;
e.BrickStyle.Font.Underline = true;

Added By: Larry (DevExpress Support) at: 6/2/2014 3:06:45 AM    

Hello,

I have created a separate ticket on your behalf to process your inquiry more effectively:
How to change font's Bold and Underline properties when export the colored ASPxGridView
Please refer to it for further correspondence. 

Added By: Nirav Vyas at: 1/21/2015 11:25:20 AM    

Hi , how can I set background color for detail grid while exporting? I am exporting master detail grid using PrintingSystem I am able to set background color in master as well as detail grid but not reflected when exported.

ref: https://www.devexpress.com/Support/Center/Question/Details/T184373

Please let me know if you need any further information.

Thanks
Nirav

Added By: Larry (DevExpress Support) at: 1/21/2015 10:15:16 PM    

Hello,

To process your recent post more efficiently, I created a separate ticket on your behalf: T199648: How to export the colored master-detail ASPxGridView using PrintingSystem. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

How to implement cascading lookups

$
0
0

This example demonstrates how to implement cascaded lookups. The main idea is to get the changed value of the first lookup and select data based on this value for the second lookup. It is necessary to perform the following steps:

1. Handle the dxLokup.onValueChanged event of the first lookup;
2. In this event handler pass the selected value of the first lookup to the DataSource.filter method of a data source that is related to the second lookup.

See also:
dxDataGrid - How to implement cascading lookup columns
OData Associations
ODataContext
dxLookup
ODataContext - How to filter data by a foreign key value

Question Comments

Added By: Jeffrey Hodgson at: 10/5/2015 12:14:31 PM    

The links I'm referring to are the following and the result of clicking on them is as below -

dxLokup.valueChangeAction - Document not found
DataSource.filter - Document not found
OData Associations - Document not found
ODataContext - Document not found
dxLookup - Document not found
ODataContext - How to filter data by a foreign key value - does link to something except DevExpress

This is DevExtreme I'm using NOT DevExpress.

Added By: Nikolai (DevExpress Support) at: 10/6/2015 12:33:46 AM    Hi Jeffrey,

Thank you for bringing this to our attention. I've fixed URLs of these links. Please test them and let me know your results.

ASPxGridView - How to export a colored grid when the Data Aware export mode is used

$
0
0

UPDATED:

Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Use ASPxGridView.FormatCondition rules to define conditional formatting in Browse Mode and keep the applied appearance in the Exported Document. Please refer to the ASP.NET Grid View - Data Range Filter, Adaptivity and More (Coming soon in v15.2) blog post and the Export with Format Conditions demo for more information.
If you have version v15.2+ available, consider using the built-in functionality instead of the approach detailed below.

If you need to apply custom appearance in the Exported Document only or define fine tuned complex appearance (for instance, based on some runtime calculated values, custom business rules, etc.), use the CsvExportOptionsEx / XlsExportOptionsEx / XlsxExportOptionsEx CustomizeCell event in the Data Aware export mode.

In v2014 vol 2, we introduced the Excel Data Aware Export feature into our grid. While this feature significantly improves the export capabilities (see the New Excel Data Export Engine blog post), it also has some limitations. Most of them are described in the T186064: ASPxGridView / MVC GridView Extension - Excel Data Aware Export FAQ article.
One of them is that the ASPxGridViewExporter.RenderBrick event is not raised when the data-aware export is used. Commonly, this event is used for customizing the cell appearance in resulted documents (a back color, fonts, a format, etc.). While this event is not available, it is still possible to accomplish this task. The XlsxExportOptionsEx object provides the CustomizeCell event that can be used for customizing cells in the exported document:

[C#]
varexportOptions=newXlsxExportOptionsEx();exportOptions.CustomizeCell+=exportOptions_CustomizeCell;ASPxGridViewExporter1.WriteXlsxToResponse(exportOptions);...voidexportOptions_CustomizeCell(DevExpress.Export.CustomizeCellEventArgsea){if(ea.ColumnFieldName!="UnitsOnOrder")return;if(Convert.ToInt32(ea.Value)== 0)ea.Formatting.BackColor=Color.Salmon;elseea.Formatting.BackColor=Color.LightGray;ea.Handled=true;}

 

[VB.NET]
Dim exportOptions = New XlsxExportOptionsEx()AddHandler exportOptions.CustomizeCell, AddressOf exportOptions_CustomizeCell ASPxGridViewExporter1.WriteXlsxToResponse(exportOptions) ...PrivateSub exportOptions_CustomizeCell(ByVal ea As DevExpress.Export.CustomizeCellEventArgs)If ea.ColumnFieldName <> "UnitsOnOrder"ThenReturnEndIfIf Convert.ToInt32(ea.Value) = 0 Then ea.Formatting.BackColor = Color.SalmonElse ea.Formatting.BackColor = Color.LightGrayEndIf ea.Handled = TrueEndSub

This example illustrates a sample scenario with exporting a colored grid when the Data Aware export mode is used.

See Also:
How to export the colored ASPxGridView

Spreadsheet - How to save and load documents from a database

$
0
0
UPDATED:

This code example demonstrates how to save and restore Spreadsheet documents from a database using a Binary column.
Starting with version 15.1, it is possible to use the SpreadsheetExtension.Open method to load a document and call the SpreadsheetExtension.SaveCopy method to save changes.

For Older Versions:
Use ISpreadsheetComponent.LoadDocument to load a document and ISpreadsheetComponent.SaveDocument - to save it.

See also:
T190812: ASPxSpreadsheet - How to save and load documents from a database

How to export colored GridView

$
0
0
UPDATED:

Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Use GridViewSettings.FormatConditions rules to define conditional formatting in Browse Mode and keep the applied appearance in the Exported Document. Please refer to the ASP.NET Grid View - Data Range Filter, Adaptivity and More (Coming soon in v15.2) blog post and the Export with Format Conditions demo for more information.
If you have version v15.2+ available, consider using the built-in functionality instead of the approach detailed below.

If you need to apply custom appearance in the Exported Document only or define fine tuned complex appearance (for instance, based on some runtime calculated values, custom business rules, etc.), use the GridViewSettings.SettingsExport.RenderBrick event in the WYSIWYG export mode.

See Also:
E4098: How to export a colored grid when the Data Aware export mode is used

How to export a colored grid when the Data Aware export mode is used

$
0
0

UPDATED:

Starting with version v2015 vol 2 (v15.2), this functionality is available out of the box. Use GridViewSettings.FormatConditions rules to define conditional formatting in Browse Mode and keep the applied appearance in the Exported Document. Please refer to the ASP.NET Grid View - Data Range Filter, Adaptivity and More (Coming soon in v15.2) blog post and the Export with Format Conditions demo for more information.
If you have version v15.2+ available, consider using the built-in functionality instead of the approach detailed below.

If you need to apply custom appearance in the Exported Document only or define fine tuned complex appearance (for instance, based on some runtime calculated values, custom business rules, etc.), use the CsvExportOptionsEx / XlsExportOptionsEx / XlsxExportOptionsEx CustomizeCell event in the Data Aware export mode.

See Also:
T334596: How to export colored GridView

How to export scheduler appointments in Google Calendar

$
0
0

This example demonstrates how you can use the Google Calendar API in your scheduling application. Google provides the corresponding guidelines regarding use of this API:
Google Calendar API 

Before using this API, make certain you have read and understand Google’s licensing terms. Next, you’ll need to generate a corresponding JSON file with credentials to enable the Google Calendar API.

We have a corresponding KB article which contains step-by-step description on how to generate this JSON file:
How to enable the Google Calendar API to use it in your application

After you generate this JSON file and put it in the Secret folder of this sample project, you can export appointments to a Google calendar.
1. Click the "Connect" button to generate a list of available calendars for your Google account and load Google events to the SchedulerControl from the selected calendar.
2. Add or change an appointment in the SchedulerControl. The modified appointment will be exported to the Google Calendar.



P.S. To run this example's solution, include the corresponding "Google Calendar API" assemblies into the project.
For this, open the "Package Manager Console" (Tools - NuGet Package Manager) and execute the following command:

Install-Package Google.Apis.Calendar.v3
Install-Package NodaTime -Version 1.3.1 

ASPxRichEdit - How to save and load documents from a database

$
0
0

This code example demonstrates how to save and restore ASPxRichEdit documents from a database using a Binary column.
Use the ASPxRichEdit.Open method to load a document and call the ASPxRichEdit.SaveCopy method to save changes.

It is also possible to handle the ASPxRichEdit.Saving event to save a document by clicking the ribbon's built-in Save button.

 How to create cascaded ComboBoxes in a report's Parameters panel in an ASP.NET WebForm application

$
0
0

This example demonstrates how to add cascaded ComboBox parameters to the XtraReport by using a report's built-in functionality. As the built-in report functionality is used, this task can be completed in the Visual Studio report designer at design time and it is not necessary to write any custom code. 

To accomplish this task, use the approach demonstrated in the How to: Assign a List of Values to a Report Parameter help topic to assign a collection of values to the report parameter. Then use the LookUpSettings.FilterString property to filter your report parameter's values collection by another report parameter value. In this code example, the following filter expression is used to filter the ProductID parameter's values collection (by the CategoryID data field) by using the CategoryID parameter value:
[CategoryID] = ?CategoryID

In this filter expression, the report's parameter name should start with the ? prefix.

Note: The parameter that is used in the filter should be added to the report's parameters collection before the filtered parameter. You can change the report's parameters  in the dialog box that can be edited by using the "Edit Parameters..." command in the Visual Studio Report Designer.

GridView - How to show a confirmation dialog using PopupControl

$
0
0
This example demonstrates how to show a delete confirmation dialog using PopupControl. In this example, GridView is created with a custom button; the CustomButtonClick event is handled. PopupControl is shown on CustomButtonClick event and if the PopupControl's "Yes" button is clicked, then the DeleteRow method is called.

See also:
ASPxGridView - How to show a confirmation dialog using ASPxPopupControl 
Question Comments

Added By: Carlton Guc at: 3/3/2016 6:38:41 AM    I am trying to do something similar to this.  I am trying to modify to what I need but I am a little stuck.  In my controller I have a For Each loop that builds an email message to send.  I want a popup for each that confirms whether to send the email or not.  I think this would work but I need to call the popup from the code and pass a model into it.  Can you please show me an example of that?Added By: Pavlo (DevExpress Support) at: 3/3/2016 7:47:08 AM    

Hello,

To process your recent post more efficiently, I created a separate ticket on your behalf: T352650: PopupControl - How to send a model with the confirmation to the server. This ticket is currently in our processing queue. Our team will address it as soon as we have any updates.

How to bookmark search results in a PDF document

$
0
0
This example shows how to create a bookmark with a destination corresponding to the found text in a document. 

Drawing tick values in the TrackBarControl and RangeTrackBarControl

$
0
0

This example demonstrates how to create custom TrackBarControl and RangeTrackBarControl editors that allow showing tick values.

Question Comments

Added By: Annie Shi at: 3/3/2016 6:07:31 PM    can you provide the solution for the following example code,it will be very convenient. thank you.
Added By: Annie Shi at: 3/3/2016 6:16:20 PM    Sorry,I have found the solution.Added By: Annie Shi at: 3/3/2016 6:33:52 PM    Sorry,I have found the solution.
Viewing all 7205 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>