-
It is an option of the SQL buffer:
buffer=new Rico.Buffer.AjaxSQL('ricoXMLquery.asp', {largeBufferSize: 15});
orderGrid=new Rico.LiveGrid ('ex2', buffer, opts);
Matt.
2009-08-30 04:00:23 UTC in Rico - Rich Ajax Framework
-
That popup should clear as soon as you get a response from the server confirming the database update. There is no way to hide the OK button via javascript, but you could probably do it with CSS.
In retrospect, I guess that interaction could be a little bit smoother. Probably should be a message saying "Data sent, waiting for response" (without an ok button). The 3 possible outcomes...
2009-08-25 03:27:52 UTC in Rico - Rich Ajax Framework
-
First of all, welcome back!
A couple of other examples that do filtering are:
ex2filterbyproduct.php
ex6.php
These two have user selections outside the grid. Are you looking for something like that, or more of the Excel auto-filter look in ex3livegrid.php?
Matt.
2009-08-22 03:06:17 UTC in Rico - Rich Ajax Framework
-
Create a clone of Rico.TableColumn.link that puts the span tags in. I've included an example below (untested) which uses the anchor's title tag instead of span tags to provide a tooltip, but it should point you in the right direction.
Usage: {type:'control',control:new tiplink (
tiplink = Class.create(
{
initialize: function(href,target,tipcol) {
this._href=href;...
2009-08-22 02:55:53 UTC in Rico - Rich Ajax Framework
-
What database are you using? I tested with MySQL 5.1 and MSSQL 2005 without issue - using ex2editfilter.php as a test case.
2009-08-22 02:40:47 UTC in Rico - Rich Ajax Framework
-
You can change this behavior using columnSpecs []...
columnSpecs : [{type: 'showTags'},
This is documented in the Rico 2 distribution under "Creating a LiveGrid".
Good Luck,
Matt.
2009-08-18 01:34:43 UTC in Rico - Rich Ajax Framework
-
Can you provide an example of the code that is trying to load Rico?.
2009-08-18 01:28:32 UTC in Rico - Rich Ajax Framework
-
1) Files in the examples directory are meant to be modified by you. This includes ricoXMLquery, where the opening and closing of the database takes place. If your session management requires the database opens and closes need to occur elsewhere, then by all means, change it. For that is the beauty of open source.
2) The call to session_write_close() was removed in Rico 2.1. Please update to...
2009-08-16 19:44:53 UTC in Rico - Rich Ajax Framework
-
//Note: columnSpecs: [control: new Rico.TableColumn.link(...),
//control: new Rico.TableColumn.link(...)] works correctly in the
//current version, but Rico.TableColumn._CLASS =
//{control: new Rico.TableColumn.link(...)}
That is why you should use:
columnSpecs: [
control: new Rico.TableColumn.link(...),
control: new Rico.TableColumn.link(...)]
if you need links in more than one...
2009-08-16 18:54:18 UTC in Rico - Rich Ajax Framework
-
"I want to be able to say size the table to a mimimum of the data size up to the max specified and ignore the client window size"
This will be part of Rico 3.
2009-08-16 14:36:20 UTC in Rico - Rich Ajax Framework