CFGRID Filter

Hi,
I have a CFGRID that uses a cfc to bind the data to the grid.
So far so good. I also have an onchange function that allows you to
update the grid. I've worked up a filter in a cfselect, with a bind
coming from the cfc - function is getBrandsFilter.
I'm trying to get the cfselect and the cfgrid to interact,
such that when a filter is picked, the grid responds.
Attached is the base page and the cfc:
Any thoughts on how to make this work would be greatly
appreciated!
cfwild

update your cfgrid's bind attribute to:
bind="cfc:brands2.getBrands({cfgridpage}, {cfgridpagesize},
{cfgridsortcolumn}, {cfgridsortdirection},
{getBrandsFilter@change})
update your getBrands method of brands2 cfc to accommodate
the above
change (i.e. query should have a where clause limiting the
results to
selected brand id)
try that see how it goes - this is totally from memory, so
may not be
100% accurate...
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/

Similar Messages

  • HOW TO: Filter Data in a html CFGRID with the query attribute defined

    Does anyone know how I can filter the data of a html cfgrid,
    not throught an AJAX bind, but perhaps by exposing some
    functionality of the EXT code behind the cfgrid???
    Any help would be greatly appreciated.
    jorge loyo

    Got It!!!
    MY INPUT:
    <input
    id="searchString"
    name="searchString"
    type="text"
    onkeyup="ColdFusion.Grid.getGridObject('dg').getDataSource().filterBy(myfilterfunc)"/>
    MY FUNCTION
    <script>
    function myfilterfunc(record, id){
    var string =
    document.getElementById("searchString").value.toUpperCase();
    var columnArray = new Array("FIRST_NAME","LAST_NAME");
    //loop through record columns
    for(col_id in record.data){
    colName = col_id.toUpperCase();
    colValue = record.data[colName].toString().toUpperCase();
    //loop through list of columns to search in
    for(i=0; i<columnArray.length; i++){
    col2filter = columnArray
    .toString().toUpperCase();
    if(colName == col2filter && colValue.indexOf(string)
    > -1) return true;
    return false;
    </script>
    MY GRID:
    <cfgrid
    name="dg"
    query="employees"
    format="html">
    <cfgridcolumn name="first_name" header="FName">
    <cfgridcolumn name="last_name" header="LName">
    </cfgrid>

  • CFGrid error when input too long

    Hello,
    We have a grid that is bound to fields in search criteria form to filter the grid results.  The actual screen has 10 search fields, but the basic code looks like this:
    <cfgrid name="gridReports" format="html" bindOnLoad="false" selectOnLoad="true"
           bind="cfc:getReports({cfgridpage}, {cfgridpagesize}, {cfgridsortcolumn}, {cfgridsortdirection}, {form:field1@none}, {form:field2@none}, {form:field3@none} )">
                   <cfgridcolumn name="column1" header="Column Name" >
                   <cfgridcolumn name="column2" header="Column Name" >
                   <cfgridcolumn name="column3" header="Column Name" >
    We have this running in 2 matching environments.  In one environment, this runs without any problems.  However in the other, when you fill in many serach fields or enter some long text into a few, it will return " Error invoking CFC [cfc filename]: Not Acceptable."  If you limit the search values entered, then the search runs just fine.  Any ideas on what may be causing the error and/or why it is only happening in one environment?
    Thanks for your help.

    cfc:getReports(
    That doesn't look right to me. I miss the CFC's name. A dotted path to the CFC may also be relevant. Path is certainly one factor that may differ between servers.

  • Embedding image and multiple queries in cfgrid

    I have a datagrid that displays a user's work history pulled
    from one query. In the original HTML table set up, a status icon
    for each work item was displayed as either "New", 'Needs Attention"
    or "Archived". This status was determined by using a value from the
    first query as a filter in the WHERE clause of the second query:
    ------------------- Original Query -------------------------
    <cfquery datasource="#application.defaultdsn#"
    name="qQuestions">
    SELECT discussions.dateSubmitted, discussions.discussionID,
    discussions.subjectID, discussions.topic, users.firstName + ' ' +
    users.lastName AS stName,
    subjects.subjectID AS Expr1, subjects.subject
    FROM discussions INNER JOIN
    users ON discussions.userID = users.userid INNER JOIN
    subjects ON discussions.subjectID = subjects.subjectID
    WHERE 0=0
    <cfif getDiscussionIDs.recordCount GT 0>
    AND (
    <cfloop query="getDiscussionIDs">
    discussions.discussionID = #getDiscussionIDs.discussionID#
    <cfif getDiscussionIDs.currentRow NEQ
    getDiscussionIDs.recordCount>OR</cfif>
    </cfloop>
    <cfelse>
    AND 0=1
    </cfquery>
    ------------------------ Queries used to determine status
    <cfquery datasource="#application.defaultdsn#"
    name="LatestMessage">
    SELECT Max(discussionPosts.postID) AS NewestMessage
    FROM discussionPosts
    WHERE discussionPosts.discussionID =
    #qQuestions.discussionID#
    </cfquery>
    <cfset variables.userTypetoView = "tutor">
    <!--- <cfif LatestMessage.recordCount --->
    <cfquery datasource="#application.defaultdsn#"
    name="getLastInfo">
    SELECT discussionPosts.userType,
    discussionPosts.dateSubmitted, discussionPosts.viewerID
    FROM discussionPosts
    WHERE discussionPosts.postID = #LatestMessage.NewestMessage#
    </cfquery>
    My question is how can I emulate this same status icon setup
    in a cfgrid? I used the following ActionScript to create a new
    column in the grid and return a string. However, this new column
    must logically know how to display the correct status IMAGE for
    each corresponding row. As you can see, there are no database
    tables for storing the status - which would have made this much
    easier.
    function setStat(){
    eQArchive.getColumnAt(1).labelFunction = statIcon;
    function statIcon(item
    bject, columnName:String): String{
    if (item[columnName] != undefined) {
    return asIcon;
    else {
    return "";
    I also tried using the toScript() function in CF7 to see if I
    can set a variable equal to the appropriate image and then return
    it in the above script, but this is where I am at a loss.
    <cfif getLastInfo.recordCount GT 0 AND
    Trim(getLastInfo.userType) EQ "tutor">
    <cfset stat = "/images/docArchive.jpg">
    <script language="javascript" type="text/javascript">
    <cfoutput>var #toScript(getLastInfo, "asIcon",
    True)#;</cfoutput>
    </script>
    <cfelseif getLastInfo.viewerID EQ session.tutorID>
    <cfset stat = "/images/docNew.jpg">
    <script language="javascript" type="text/javascript">
    <cfoutput>var #toScript(getLastInfo, "asIcon",
    True)#;</cfoutput>
    </script>
    <cfelse>
    <cfset stat = "Green">
    <script language="javascript" type="text/javascript">
    <cfoutput>var #toScript(getLastInfo, "asIcon",
    True)#;</cfoutput>
    </script>
    </cfif>
    Any ideas on how to get this working is greatly appreciated.
    Thank you in advance.

    Hi Mike,
    To insert multiple queries in a single woorkbook.
    In the Business Explore --> Analyser --> Open the first query and then click on tools button of the BEx add on components and select the option ( Insert Query ).
    Reg's,
    Pratap Reddy Bodimalla.

  • EnterKey in cfgrid

    I have the search form with three fields: city, state, and enter date.  The results are displayed in the cfgrid.  Currently, when i enter search criteria, i have to use the tab kep to refresh the data from the cfgird's results.  Instead of using the tab key, i need to use the enter key.  I don't know if i have the correct way but the code i have below didn't work because more arguments from cfgrid than cfc(i have extra the getSearchString () from cfgrid)
    can you help with this?
    Thanks
    <!---my cfc-->
    <cffunction name ="cf_city" access="remote" returnpe="struct">
         <cfargument name ="page" required="true" />
         <cfargument name = "pageSize" required="true" />
         <cfargument name ="gridsortcolumn" required="true" />
         <cfargument name ="gridsortdirection required="true" />
         <cfargument name="city" required="true" type="string" />
         <cfargument name ="state" required="true" type="string" />
         <cfargument name ="date" required="true" type="date" />
    </cffunction>
    <!---my form.cfm--->
    <cfform name="search" action="##" method="post" onsubmit ="ColdFusion.Grid.refresh("myGrid", false);">
    <cfinput type="text" name="city" id="city">
    <cfinput type="text" name="state" id="state">
    <cfinput type="datefield" name="date" id="date">
    </cfform>
    <!---scrpt function--->
    <script>
      getSearchString = function() {
       var s ={};
         s.city=ColdFusion.getElementValue("city");
         s.state=ColdFusion.getElementValue("state");
         s.date= ColdFusion.getElementValue("date");
    return s;
    </script>
    <!---diplay on the cfgrid--->
    <cfgrid
         name="myGrid"
         format="HTML"
         title="search result"
         selectMode="Single"
         pagesize= "20"
         bindOnLoad ="true"
        bind = "cfc.myapp.cfc.filter.cfc_city ({cfridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},getSearchString(), {city},{state};{date})">
         <cfgridcolumn name="city" header="city">
         <cfgridcolumn name="state" header="state">
    </cfgrid>
    thanks

    kt03 wrote:
    I have the search form with three fields: city, state, and enter date.  The results are displayed in the cfgrid.  Currently, when i enter search criteria, i have to use the tab kep to refresh the data from the cfgird's results.  Instead of using the tab key, i need to use the enter key.  I don't know if i have the correct way but the code i have below didn't work because more arguments from cfgrid than cfc(i have extra the getSearchString () from cfgrid)
    can you help with this?
    Thanks
    <!---my cfc-->
    <cffunction name ="cf_city" access="remote" returnpe="struct">
         <cfargument name ="page" required="true" />
         <cfargument name = "pageSize" required="true" />
         <cfargument name ="gridsortcolumn" required="true" />
         <cfargument name ="gridsortdirection required="true" />
         <cfargument name="city" required="true" type="string" />
         <cfargument name ="state" required="true" type="string" />
         <cfargument name ="date" required="true" type="date" />
    </cffunction>
    Suggestions:
    <cfcomponent>
    <cffunction name ="cf_city" access="remote" returnpe="struct">
    <cfargument name ="page" required="true" />
    <cfargument name = "pageSize" required="true" />
    <cfargument name ="gridsortcolumn" required="true" />
    <cfargument name ="gridsortdirection" required="true" />
    <cfargument name="city" required="true" type="string" />
    <cfargument name ="state" required="true" type="string" />
    <cfargument name ="date" required="true" type="date" />    
    <!--- return at least an empty query to avoid errors,  enabling you to test --->
    <cfset var myQuery = querynew("")>    
    <cfreturn queryconvertforgrid(myQuery, page, pagesize) />
    </cffunction>
    </cfcomponent>
    <!---my form.cfm--->
    <cfform name="search" action="##" method="post" onsubmit ="ColdFusion.Grid.refresh("myGrid", false);">
    <cfinput type="text" name="city" id="city">
    <cfinput type="text" name="state" id="state">
    <cfinput type="datefield" name="date" id="date">
    </cfform>
    <!---scrpt function--->
    <script>
      getSearchString = function() {
       var s ={};
         s.city=ColdFusion.getElementValue("city");
         s.state=ColdFusion.getElementValue("state");
         s.date= ColdFusion.getElementValue("date");
    return s;
    </script>
    <!---diplay on the cfgrid--->
    <cfgrid
         name="myGrid"
         format="HTML"
         title="search result"
         selectMode="Single"
         pagesize= "20"
         bindOnLoad ="true"
        bind = "cfc.myapp.cfc.filter.cfc_city ({cfridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection },getSearchString(),{city},{state};{date})">
         <cfgridcolumn name="city" header="city">
         <cfgridcolumn name="state" header="state">
    </cfgrid>
    Suggestions:
    1) Place the closing form tag </cfform> after the grid.
    2) Give the datefield a default value.
    3) Begin the bind expression with "cfc:", not "cfc.".
    4) Correct the spelling of the name of the function in the bind. It is "cf_city", not "cfc_city".
    5) Remove getSearchString() from the arguments list in the bind.
    6) Replace the semicolon in {state};{date} with a comma.
    The result should be something like
    <cfform name="search" action="##" method="post" onsubmit ="ColdFusion.Grid.refresh('myGrid', false);">
        <cfinput type="text" name="city" id="city">
        <cfinput type="text" name="state" id="state">
        <cfinput type="datefield" name="date" id="date" value="#now()#">
        <cfgrid
             name="myGrid"
             format="HTML"
             title="search result"
             selectMode="Single"
             pagesize= "20"
             bindOnLoad ="true"
             bind = "cfc:myapp.cfc.filter.cf_city({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsor tdirection},{city},{state},{date})">
             <cfgridcolumn name="city" header="city">
             <cfgridcolumn name="state" header="state">
        </cfgrid>
    </cfform>

  • Passing parameter to CFC while using CFGRID bind

    I am attempting to use CFGRID to display some data. I have a
    CFGRID set up using a bind to a CFC which is fine for a hard coded
    SQL but I want to pass a parameter.
    I started with the example at
    http://www.garyrgilbert.com/blog/ind...sion-8s-CFGRID
    I'd like to pass one or more variables to filter down the
    result set.

    hi there, did you get this to work? I'm experiencing the same problem. i'd like to bind and pass the CFGRIDKEY to my CFC to filter my query results and then pass back the new results to my cfgrid. at this point i have no problem passing my new parameters as an argument in the json string or as a url paramenter when calling my CFC directly. however, my CFGRID keeps wigging out because it can't see the URL.CFGRIDKEY coming in. thoughts?
    here's the process, page load with all users assigned to all classes in my CFGRID. user then clicks on a class number in the grid or selects a class number for a drop down selection form, to view all students assigned to a particular class.
    as mentioned above, I can actually get the results i need when calling my CFC directly: http://127.0.0.1:8500/DREST_Pro/admin/getUsers.cfc?method=SPActiveUsers&returnFormat=json& argumentCollection={"gridpage":1,"gridpagesize":10,"cfgridkey":16,"gridsortcolumn":"","gri dsortdirection":""}&_cf_nodebug=true&_cf_nocache=true&_cf_clientid=76578301E64A507D8CD8F77 D078EA17A&_cf_rc=0&intclassid=18&cfgridkey=18
    and i can do this either by adding the cfgridkey argument into the argumentCollection or i can filter my results by appending the cfgridkey as a URL param.
    the problem seems to be in my binding of a new parameter when building my cfrid:
    <cfform name="getUsers">
            <cfgrid format="html" name="displayUsersActive" appendkey="yes" hrefkey="intfkclassid" href="allEnrolled.cfm" selectmode="row" striperows="yes" pagesize="10" bind="cfc:getUsers.SPActiveUsers({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgrid sortdirection},{cfgridkey})" width="650" height="400">
                <cfgridcolumn name="intfkclassid" display="no">
                <cfgridcolumn name="txtLName" header="Last Name" headerbold="yes" width="20">
                <cfgridcolumn name="txtFName" header="First Name" headerbold="yes">
                <cfgridcolumn name="startdate" header="Start Date" width="30" headerbold="yes">
                <cfgridcolumn name="enddate" header="End Date" headerbold="yes">
                <cfgridcolumn name="classno" header="Class No" headerbold="yes">
            </cfgrid>
        </cfform>

  • CFGRID - Sum of Column Values

    Hi,
    Is there a way to sum | total a column of numeric values in a
    cfgrid? I want to populate a cfinput text box with the number, and
    bind it so that as changes to numbers occur on the grid, the
    cfinput box changes.
    I've been able to do this by creating a function that goes
    and extracts the information via a database query. Running the
    query seems to add overhead to the screen response time.
    The variable could start as a value passed from a query. Say
    2000. When a field changes, it would take the original value,
    subtract out the original "row" value, then add in the new "row"
    value. Say a 2 is being replaced by a 3. Then you'd have 2000-2+3 =
    2001 which becomes the new "original" total value.
    Any thoughts would be appreciated.
    cfwild

    Hi Dan,
    Thanks for the feedback. The grid really works well for what
    I'm trying to do. I can filter the pages and make minor changes to
    the data quite quickly. When I add in the extra function (to sum
    the column) that goes out to the table to extract the data, it
    seems to take a performance hit on the "page".
    In looking at the code I've seen, it seems easy(?) to get to
    the new value of the column. Is there a decent way to get to the
    "old" value of the column, prior to an update? (or as you update)?
    cfwild

  • CFGrid won't update cell (works in 8 but not 10)

    I am not an Ajax / JSON guy (yet).  I am trying to find a solution for a problem I walked into  (new client) and they are upgrading from 8 to 10.
    the cfgrid works okay in cf8, but fails to update in cf10.
    Right now, about all I have to go on is the console output, to whit:
    Exception: ColdFusion.Grid is undefined File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 100 Column: 0
    Warning: Selector expected.  Ruleset ignored due to bad selector. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 10 Column: 2
    Warning: Selector expected.  Ruleset ignored due to bad selector. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 12 Column: 2
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 21 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 23 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 26 Column: 10
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 54 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 106 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 114 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 115 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 126 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 181 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 201 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 284 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 311 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 313 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 316 Column: 10
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 343 Column: 13
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 345 Column: 6
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 425 Column: 17
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 475 Column: 14
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 477 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 486 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 503 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 511 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 587 Column: 10
    Warning: Unknown property 'text-overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 605 Column: 15
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 747 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 761 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 765 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 797 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 798 Column: 17
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 820 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 821 Column: 17
    Warning: Unknown property 'resize'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 904 Column: 12
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 978 Column: 10
    Warning: Error in parsing value for 'white-space'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1053 Column: 31
    Warning: Error in parsing value for 'white-space'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1054 Column: 27
    Warning: Error in parsing value for 'white-space'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1055 Column: 29
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1057 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1071 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1222 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1350 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1398 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1767 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1772 Column: 6
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1778 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1782 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1788 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1794 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1811 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1817 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1832 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1837 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1853 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1863 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1864 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1878 Column: 14
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 1879 Column: 13
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2019 Column: 10
    Warning: Unknown property 'text-overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2151 Column: 15
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2245 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2272 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2315 Column: 6
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2320 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2398 Column: 6
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2590 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2654 Column: 14
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2656 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2664 Column: 14
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2666 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2696 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2697 Column: 17
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2698 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2833 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2862 Column: 14
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2864 Column: 17
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2909 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2963 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2965 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2969 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2971 Column: 18
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2975 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 2977 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3031 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3197 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3204 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3211 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3223 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3229 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3239 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3245 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3309 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3323 Column: 6
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3336 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3556 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3573 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3583 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3594 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3617 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3624 Column: 10
    Warning: Unknown property 'text-overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3642 Column: 19
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3660 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3692 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3705 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3732 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3738 Column: 6
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3744 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3748 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3754 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3760 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3778 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3784 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3799 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3805 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 3833 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4020 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4021 Column: 17
    Warning: Expected color but found 'thin'.  Expected color but found 'dotted'.  Expected color but found 'invert'.  Expected end of value but found 'invert'.  Error in parsing value for 'outline'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4211 Column: 61
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4217 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4222 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4223 Column: 17
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4234 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4235 Column: 17
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4240 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4246 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4261 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4267 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4279 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4284 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4292 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4298 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4310 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4316 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4411 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4413 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4712 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4727 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4735 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4740 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4753 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4754 Column: 17
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4759 Column: 18
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4837 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4842 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4895 Column: 10
    Warning: Unknown property 'text-overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4904 Column: 15
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4922 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4928 Column: 10
    Warning: Unknown property 'text-overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4936 Column: 15
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4939 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4974 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 4982 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5010 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5045 Column: 10
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5114 Column: 10
    Warning: Error in parsing value for 'overflow'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5122 Column: 15
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5202 Column: 10
    Warning: Unknown property '-moz-opacity'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5306 Column: 18
    Warning: Error in parsing value for 'filter'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5307 Column: 17
    Warning: Unknown property 'zoom'.  Declaration dropped. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 5872 Column: 10
    Warning: Expected declaration but found '/'.  Skipped to next declaration. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 6452 Column: 6
    Warning: Expected declaration but found '/'.  Skipped to next declaration. File: http://localhost:8500/CFIDE/scripts/ajax/resources/ext/css/ext-all.css Line: 6558 Column: 6
    Warning: Expected ':' but found '='.  Declaration dropped. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 36
    Warning: Expected ':' but found '='.  Declaration dropped. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 36
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Exception: parseJSON File: http://localhost:8500/CFIDE/scripts/ajax/package/cfajax.js Line: 804 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event should not be used. The value is meaningless. File: http://localhost:8500/billing/index.cfm?do=c.maintTable Line: 0 Column: 0
    Warning: The 'charCode' property of a keydown event shoul

    WiWildcat wrote:
    The final solution to this problem was sooo infitesimally stupid I almost hate to post it, but it may help someone else.
    There was an object involved that needed to be loaded. It did not have the full path.  That's it.
    <cfset myObj = createoboject("component", "alpha.maintenance")>
    Needed to be:
    <cfset myObj = createoboject("component", "beta.alpha.maintenance")>
    and it started working fine then.
    (wiping egg from face)
    If so, then, in my opinion, the egg is on Adobe's face, not yours. The error message should just have been something like "Component not found". Just one line, instead of 199.

  • CFGRID search

    I have a cfgrid with cfc binding. Also I have an cfinput box to filter the grid records by passing the cfinput box id in curly braces along with the bind expression in the cfgrid tag. The cfc method to get the grid data refers some session variables. The search works only within the session timeout period. If user search after session timeout period it throws javascript exception. I tried onKeyUp of cfinput I checked the session timeout and if it is true then refresh the grid otherwise alert the user saying your session is time out. However this doesn't work for me.  Please help me on this

    Do for a start:
    <cfinput> in place of <input>
    <cfselect> in place of <select>
    </cfform> in place of <form>

  • In the filter scheme driver, how to i get the filename in open() or handleOpen ()

    I want to implement filter scheme driver to monitor and prevent file open or read calls based on certain rules. For this I would need file name, user name and application process name. I did not find a way to extract this information. Any hint would be of great help.

    If the reset doe not work, connect tot he comouter and try to restore via iTunes.
    If the logo is still showing, let the battery fully drain. After charging for an hour, try the reset and restore again.

  • AND/OR + some nulls in filter

    I'm running into another problem with the AND/OR filter.
    The filter for selecting from object "a" and joining to objects b, c & d
    is:
    (b.theid==2 || c.theid==2 || d.theid==3) && active=="Y"
    The SQL that gets generated is:
    SELECT <...>
    FROM b t1, d t3, a t0, c t2
    WHERE ((((t1.theid = 2 AND t0.bid = t1.id) OR (t2.theid = 2 AND t0.cid
    = t2.id)) OR (t3.theid = 3 AND t0.did = t3.id)) AND t0.active = 'Y')
    This returns a number of instances of the same a object when some of the
    OR clauses do not match. For example, if there's no record
    with d.theid=3, then it will do a full join on table d.
    Do I need to specify something else to flag these as potentially null
    fields so that the filter parser adds that check in? The following SQL
    query works
    ok if I add some checks for NULL on those join fields:
    SELECT <...>
    FROM b t1, d t3, a t0, c t2
    WHERE ((((t1.theid = 2 AND t0.bid = t1.id OR t0.bid IS NULL) OR
    (t2.theid = 2 AND t0.cid = t2.id OR t0.cid IS NULL)) OR (t3.theid = 3
    AND t0.did = t3.id OR t0.did IS NULL)) AND t0.active = 'Y')
    Thanks,
    -Mike
    Mike Bridge

    Hi D,
    Thank you for your answer.
    I have seriously thought about that solution; but I don't think it's a smart way to do it.
    If i do it like that, i need to copy the whole table and paste it inside the if statements.
    I have two xml elements that I need to make the decisions on. POH_PO_TYPE & CP_RELEASE_NUM.
    POH_PO_TYPE can be: STANDARD, RELEASE or BLANKET.
    CP_RELEASE_NUM can be: '' or N
    If POH_PO_TYPE is RELEASE AND CP_RELEASE_NUM is not ''
    OR POH_PO_TYPE is STANDARD
    OR POH_PO_TYPE is BLANKET AND CP_RELEASE_NUM is ''
    THEN show table (which contains the whole PO).
    It shall show the content of the PO in any of these cases.
    BR Kenneth

  • Jabber Windows - no phone control with LDAP Custom filter

    I am unable to control the desktop phone from the Jabber 9.1 Windows client when the CallManager LDAP Directory uses a Custom Filter.
    Has anyone else experienced this?
    If I set the LDAP Custom Filter to <none> and save, then Desktop Phone control works great.
    If I set it to use my custom filter, then trying to enable Desktop control just gives me the spinning circle, then times out to the Red X symbol.
    I do not need to resync the LDAP Directory to get the error, just enable/disable the custom filter and save.
    In both cases calling from the Computer works great.
    This is an On-Prem deployment with full MS-AD LDAP integration.
    Versions are:
    Jabber - 9.1.0 build 12296
    CUPC - 8.6.4.11900-1
    CUCM - 8.6.2.22900-9
    I upgraded to CUCM 8.6.2 SU2 last night hoping that would fix the problem, but no luck.
    The LDAP filter is one I have used in numerous other clusters with no CTI issues.
    It allows me to sync to the root directory, but only import active user accounts with an entry in the ipPhone AD attribute:
    (&((objectclass=user)(ipPhone=*))(!(objectclass=Computer))(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))
    Thanks, Randy

    Hi Randy,
    Have you specified this base filter in jabber-config.xml file? As per Admin Guide:
    "In some cases, base filters do not return query results if you specify a closing bracket in your Cisco Jabber for Windows  configuration file. For example, this issue might occur if you specify  the following base filter: (&(memberOf=CN=UCFilterGroup,OU=DN))
    To resolve this issue, remove the closing bracket; for example, (&(memberOf=CN=UCFilterGroup,OU=DN)"
    Thanks,
    Maqsood

  • In ALV Report Filter selection should be case sensitive

    Dear All,
    since one field is case sensitive in database table , i have to fetch that in alv report , but when i am applying  filter on that field its is simply fetching data with case description.  if its in caps it should fetch caps data but in   smaal case report showing no data
    Regards,
    Pankaj Vashista

    Hi,
    All text datas are case sensitive.
    To make it work perfectly You have to Use the Keyword translate to Upper Case than display
    Now filter can work.
    Without Transalation to Upper Case filter will not work.
    Regards
    Arbind

  • My Mac is bypassing a website filter... How can I stop it?

    I am a computer technician at our local high school. Right now, the school has about 800 Dell computers, but we are planning on introducing a few Macintosh labs within the next school year.
    Since they lack educational value, the school district's director of technology (my boss) has a web filter (Deep Nine) that blocks myspace, facebook, youtube, proxy sites, and other similar sites.
    Myspace is blocked via a keyword filter, any page containing the word "myspace" in the url, or in the document a set number of times, is automatically blocked. The other sites are simply blocked by URL. This filter works perfectly on our Dells, no one can access Myspace, Facebook, Proxies, etc.
    I brought my Macbook to work today, plugged it into the network, and logged onto the internet. I noticed instantly that my homepage (Facebook) loaded without being blocked at all. Curious, I tested myspace and youtube, and I could get on youtube fine, but myspace remained blocked.
    I checked on the Dell next to me, and all those sites will still being filtered and blocked. Yet my Macbook was able to access them without issue. So it would appear that my Macbook has some mystic ability to bypass the web address filter, but it can not bypass the keyword filter.
    I do not have any proxies configured. My Macbook connects to the network (and thus, the internet) the same exact way the other computers within the school do, with the exception of the other computers being within Active Directory.
    I need to find out if it is an issue with the Mac or with our Filter. I don't have any other Macs available to test with (Our only other Mac in the school is our DHCP server, and we do not use servers as "lab rat" computers).
    Has anyone had any similar issues with this? Or does anyone know of any way I can diagnose this with only one Mac and only one Filter?
    Specs: OS 10.5.5, Safari 3.1.2, wired networking.
    Message was edited by: Joey Hogan
    Message was edited by: Joey Hogan

    The DeepNines product works well and does much more than a simple URL filter. The problem lies entirely in your district setup and not in their product. If you're not using a proxy filter, then you have all access and routes designed to head out on typical port 80 traffic to your isp and ultimately the internet hence no proxy configs. The filter is integrated with LDAP accounts at each of your locations to tell it which users and groups are to get filtered at what level. That tie in is what breaks down who goes where. If you introduce new macs onto the network and they have not been configured to work with the DN appliance and are going out unfiltered... then there are 2 problems here. #1 is that you have computers attaching to the network, receiving leases and doing what they want. Use DHCP reservations or a whitelist to control who gets on your network. #2 is that your DeepNines filter has not been set to failover to BLOCK. Instead, it's allowing unknown users to bypass freely simply because it doesn't recognize their group/account. And Orange, stop slamming the company. They are a smaller business that has taken a much better approach to filtering than any other large corporation. Standard database driven URL filters DO NOT WORK....PERIOD! I challenge you to call any district that is running their appliance to get their opinion of it in comparison to any of the other basic url filters out there. I did just that last week and they had absolutely nothing but high praises for the DN product. One even laughed at Websense which they had before switching simply for the lack of ability to block anonymouse proxies.

  • How to use one Filter Pane to multiple Dataproviders

    Hi Experts.
    i have checked the threads on this but i did not get correct solution.
    we have issue in using single Filter pane web item in WAD for three different dataproviders ( three dataproviders have same free charecteristics and variable) charecteristics in row and keyfigures are different.
    thanks in advance.
    Regards
    Raj.

    Hi Gill,
    Thanks for your Quick responce.
    when we use the single filter pane, filter conditions are working for only first dataprovider (since data binding is to dataprovider 1. in affterted dataproviders i selected dataprovider 2 and 3, but filter pane is not active for other two dataproviders in tabs.
    thanks in advance.
    Any inputs please....
    Regards,
    Raj.
    Edited by: Rajsapbi on Apr 6, 2009 9:22 AM

Maybe you are looking for

  • How do I use Google websites and LinkedIn on Firefox 14.0.1?

    I have just downloaded Firefox 14.0.1 on my pc which uses Windows 7, with the default settings. Everytime I try to use Google to signin into my account or goto Gmail, I get the following error message: "Firefox has detected that the server is redirec

  • Help me out....in java

    Hi All, How to unzip the zip file in JAVA when zip file contains the password authentication. Please help me out..... thanks in advance.

  • Add-On packaging

    I have created some forms in asp.net for sap b one.I want to deploy i.e create add on for these forms.I tried running AddOnRegDataGen.exe.But what are the addon exe,installer exe and uninstaller exe ?I have created windows application.How can I creat

  • Ps admin - apllication error

    hi, when i am trying to boot my app server . i am getting an error cmdtux_cat:827 error i am using application hrm 9.0 tools 8.49 MS SQL Server 2008 WINDOS XP3 TUXEDO 9.1 WEB LOGIC 9.2

  • Help: how to fix a line in this script (almost good) for change text to real UPPERCASE?

    app.findGrepPreferences = null; app.findGrepPreferences.findWhat = '\\l\\l+'; app.activeDocument.characterStyles.item("SC"); foundList = app.activeDocument.findGrep(true); for (i=0; i<foundList.length; i++)   foundList[i].changecase (ChangecaseMode.U