Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

create dynamic search box
(1 viewing) (1) Guest
Go to bottomPage: 1234567
TOPIC: create dynamic search box
#39155
Re:create dynamic search box 11 Years ago Karma: 747
Open HTML source of the page. It doesn't contain files for ColVis addon and "C" in "Controls layout" parameter.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#39257
Re:create dynamic search box 11 Years ago Karma: 1
So I have made my datatable with some nice options and functions, but I still haven't figured out a way to create a dynamic search box the way that my boss wants it. So we don't want multiple text-boxes or drop-down boxes filtering each column, but would like the following:
Have one drop down box listing all the columns. Depending which column is selected in that that drop-down box, it will have the regular search text-box next to it, to write what we wish to search.

Can you please give me any idea of how I can do this?

Thanks so much,
Constantine
The administrator has disabled public write access.
 
#39267
Re:create dynamic search box 11 Years ago Karma: 747
It requires to create a new addon for DataTables widget.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#47837
Re:create dynamic search box 10 Years, 2 Months ago Karma: 0
I have applied the explanation provided earlier by the Admin and got dynamic search boxes at the bottom of my tables. Very good and meeting my needs. However, at the same time, I have lost the specific width of my columns, which are all with the same size. Neither the width in % or in px can reset them to the previous sizes, whatever values I enter.

Thanks for any solution & Regards

Dominique

admin wrote:
Create "columnfilter" folder in <joomla_directory>\modules\mod_aridatatables\includes\js\widgets\datatable\plugins\ folder and copy jquery.dataTables.columnFilter.js file to the created folder. After this open <joomla_directory>\modules\mod_aridatatables\includes\kernel\DataTables\Models\class.DataTablesWidgetDatatableModel.php file, find "includeAssets" method and add the following code:

AriDocumentHelper::includeJsFile($baseUri . 'plugins/columnfilter/jquery.dataTables.columnFilter.js');

after the following code:

AriDocumentHelper::includeJsFile($baseUri . 'plugins/tabletools/js/TableTools.min.js');

Then find "initClientInstance" and replace the following code:

'if (typeof(AriDataTables) != "undefined") AriDataTables.hideLoadingPane("#%1$s_wrapper");var options = %2$s;options["fnDrawCallback"] = function(oSettings) { adt_DataTable_DrawCallback(oSettings) };$("#%1$s").addClass("display dataTable").dataTable(options);'

with the following one:

'if (typeof(AriDataTables) != "undefined") AriDataTables.hideLoadingPane("#%1$s_wrapper");var options = %2$s;options["fnDrawCallback"] = function(oSettings) { adt_DataTable_DrawCallback(oSettings) };$("#%1$s").addClass("display dataTable").dataTable(options).columnFilter();'

PS: Set "HTML table settings -> Show footer" parameter to "Yes" in module settings.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#47838
Re:create dynamic search box 10 Years, 2 Months ago Karma: 747
Hello,

Where we can see the problem?

Regards,
ARI Soft
The administrator has disabled public write access.
 
#47841
Re:create dynamic search box 10 Years, 2 Months ago Karma: 0
Please find a view of the table, before and after implementation of the dynamic search box.

The major changes are:

    Global size of the table, which has become (spontaneously) much wider

    Changes in the specific width of fields, small ones become wider and large ones smaller. All almost at the same width. No changes can be made with different % or px in these fields.


Regards

Dominique
The administrator has disabled public write access.
 
Go to topPage: 1234567