Software, Cycling

Posts tagged jquery

0 notes &

Developing on Salesforce

I’ve had a healthy amount of exposure to the Salesforce.com platform from an integration standpoint, and I’ve done some tinkering with the web front-end and eclipse IDE in the past, but recently I’ve been involved in a project that’s going to be developed directly on the SFDC platform.  Here are some of my initial thoughts on it…

Read more …

Filed under salesforce jquery

0 notes &

1/26/2011 Update

The majority of my work the last few weeks has been HTML + JQuery + JSON… once work calms down a bit, these are some things I want to share:

  • Extending an html select with a jquery autocomplete widget, including some UX considerations.
  • Using Jquery $.data() to tag data to a DOM element.
  • Reposting JSON data to a server, after it was rendered with jQuery Templates.
  • Updating a jQuery Template by updating its underlying JSON data, its easy, and you should use it to save on expensive postbacks.

Have fun in the snow.

Filed under jquery javascript ux

0 notes &

jQuery Template - $index Patch

This git branch shows a simple change to the jQuery Template tmpl() function to add an $index property to the dataItem.

Usage:

<!— jQuery UI Tabs —>
<script id=”tabTemplate” type=”text/x-jquery-tmpl”>
    <div id=“tab-${$index + 1}”>
        <!— render tab contents here… —>
    </div>
</script>

Filed under jquery