Tutorial: Grid with Ajax events

In this example we will see how to create and use the Ajax event in the grid application that allows to traffic information without reloading the page.


Creating the Grid application

1. We will create a new Grid application based on the customers table.


2. Visit the “AJax Events >> New Ajax Event” option in the application menu.


3. We will select the “contactname” field and the “onClick” event.


4. In the event write the following code.

if ({creditlimit} > 4000){
sc_ajax_message({lang_msg_grid_percent_hi}, "Customer Limit", "timeout=0");
}
else{
sc_ajax_message({lang_msg_grid_percent_low}, "Customer Limit", "timeout=0");
}

5. Click on the button “Run application”


Tutorials in the same category

Tutorial: Evaluation Field in Forms

In this tutorial, you will see how to create a Form using the evaluation fields. Creating the Form ...

Tutorial: Grid fixed columns

In this sample we’ll see the option fixed column on the grid. This way we’ll be able to do a hor...

Tutorial: New Refined Search

In this sample we’ll develop one grid using the option refined search, that will allow us to searc...

Tutorial: Grid Mobile

In this sample, we’ll see the configuration of one grid application for mobile. Creating a ...

Comment this post