JQuery.Spreadsheet UI


Introduction

A plugin to the JQuery library that provides a spreadsheet like user interface

Project

Example


$(function()
{
    $("#hn").spreadsheet();
    $("#hn").spreadsheet("setWidth","b",200);
    $("#hn").spreadsheet("setHeight","2",30);
    $("#hn").spreadsheet("setValue","c5","foo");
    $("#hn").spreadsheet("setStyle","c5","font-style","italic");
    $("#hn").spreadsheet("addName","b2:c3","newRange");
    $("#hn").spreadsheet("addFunction","MATHS","ABS","=ABS(number)");
});
            

or try it fullscreen