Search
18878 results 601-610
Forum
- 1st Aug 2017or_where seems to break edit refresh and create strange behaviorSounds like a sensible idea to me - I'll add in information about it. Thanks, Allan
- 19th Jun 2017Editor how to create dynamically a list of elements for field of type "select"The update method of the update field type is the way to do this. For example you might: $.getJSON( url, function ( json ) { editor.field( 'myField' ).update( json ); } ); Allan
- 13th Jun 2017Need to use the create a link in new tab functionality of Google Chrome.Can you link to a page showing the issue, per the forum rules, please. DataTables should make no difference to the right click behaviour. Allan
- 2nd Jun 2017Editor not updating Datatable after create ...Perhaps one option would be to use the UUID as the primary key? Having said that, if someone could do something bad by guessing an id, they could also do something bad by guessing a uuid. It might take them longer to guess it, but it isn't really security in my mind. Allan
- 26th May 2017How does datatables create the csv export?It depends upon the browser - for example in Chrome for me it just downloads automatically to my Downloads folder. The CSV export makes use of this library. I don't believe there is a way to tell the browser if you want to download to a path rather than use a save as box if that is how the browser is configured. You certainly can't tell it what path to download to - that would be a major security issue. Allan
- 23rd May 2017how to create multiple rows using create api without showing forms?You need to call the submit() method to submit the form. Regards, Allan
- 15th May 2017create dropdowns on insert with data from dbNope, I wanted something like this https://editor.datatables.net/examples/simple/fieldTypes.html, but in the meantime I solved it. I use json to fill my options in the dropdown and it works perfect :smile:
- 28th Apr 2017Standalone Create and Update ProblemCould you give me a link to the page showing the issue so I can debug it please? That actually looks like it should work since you are using repeating tabular data. Allan
- 3rd Apr 2017Override Create template to allow user to select a foriegn key relationYes, Editor has field type plug-ins available for Select2, Selectize, Chosen and jQuery UI AutoComplete. You can choose which ever you prefer to work with. This is the plug-ins list. Allan
- 1st Apr 2017create 2 tables in one page using data tables, not workingThere indeed isn't much information in the question. Seeing the little info provided, you'll need to give each table a unique id. $(document).ready(function() { $('#table1').dataTable(); $('#table2').dataTable(); } );