Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
grid
- Page 1
Has CSS Grid completely replaced Flexbox in your projects? Why or why not?
Programming
Web Development
6 Days Ago
by KamalDeepPareek
Please answer
Re: Top industries that use automation
Programming
Software Development
2 Months Ago
by Reverend Jim
… the computers that controlled our provincial generation, transmisssion, and distribution
grid
for 29 years I disagree with the classification of that…
Re: Grid
Programming
Software Development
16 Years Ago
by bruceraymond
… a database and I know that's not typical for
grid
objects. Data comes in from a measurement, I perform some… need to be able to present the results in a
grid
. The data are in memory, so there's no need… I know it's possible to perform the
grid
update quickly. The database/
grid
objects seem to have many more bells and…
Grid
Programming
Software Development
16 Years Ago
by bruceraymond
… trying to display a large amount of data in a
grid
(~26,000 cells) under C#/VS2005. I'm looking for… display vehicle. I had been using SourceGrid. However, the basic
grid
was too slow. I switched to SourceGrid/ArrayGrid which is… that's too slow. I am hoping to find a
grid
object in VS2005 that is lightweight and fast. I'm…
grid
Programming
Web Development
15 Years Ago
by vankysrox
i m using gridview on ma page.aspx and in gridview i m using hyperlink that contain mem_id and open new window and show the record acc. to that mem_id but the problem is that when i close the 2nd window...
grid
of sender page get invisible and what i want i remain visible to see multiple records just click on that hyperlink
Grid & RadioButtons
Programming
Software Development
12 Years Ago
by slasel
…height=3,command=hint) Hint.
grid
(row=6,column=0) …) Pol1.image=pol1 Pol1.
grid
(row=5) ############################################################################## global …
Re: Grid operations
Programming
Software Development
16 Years Ago
by vegaseat
… of row_lists ... [code=python]# forming a matrix/
grid
... class
Grid
(object): """
Grid
class with a width, height"""…; def __init__(self, width, height): #self.
grid
= [] self.width = width self.height = height def new_grid(self): "…
Re: Grid operations
Programming
Software Development
16 Years Ago
by tillaart36
… have this: [code] # Create a Python spatial
grid
. class
Grid
(object): """
Grid
class with a width, height"""…; def __init__(self, width, height): self.
grid
= [] self.width = width self.height = height def new_grid(self): "…
Re: Grid operations
Programming
Software Development
16 Years Ago
by tillaart36
…, length""" def __init__(self, width, height): self.
grid
= [] self.width = width self.height = height #self.length = width * … y in range(height): col.append(Cell(x, y, self.
grid
)) self.
grid
.append(col) def setItem(self, x, y, val): self…
Grid not displaying
Programming
Web Development
12 Years Ago
by Samyx
…quot;text/css" href="./dojox/
grid
/resources/
Grid
.css" /> <link rel…type="text/css" href="./dojox/
grid
/resources/claroGrid.css" /> <script…javascript"> dojo.require("dojox.
grid
.DataGrid"); dojo.require("dojo.data…
Re: Grid not displaying
Programming
Web Development
12 Years Ago
by Samyx
…type="text/css" href="./dojox/
grid
/resources/
Grid
.css" /> <link rel=&…; type="text/css" href="./dojox/
grid
/resources/claroGrid.css" /> <script>…text/javascript"> dojo.require("dojox.
grid
.DataGrid"); dojo.require("dojo.data.…
Re: Grid not displaying
Programming
Web Development
12 Years Ago
by Samyx
… not the data. I wonder were in the code the
grid
display get interrupted. Maybe I should had called the resource… files in a different order. Maybe the call to the
grid
should come after the graph. I am not sure...I… it still displays the same thing (only the graphs and
grid
header). When I take a look at the code using…
Grid operations
Programming
Software Development
16 Years Ago
by tillaart36
…] import wx import wx.
grid
class TestTable(wx.
grid
.PyGridTableBase): def __init__(self): wx.
grid
.PyGridTableBase.__init__(self) self.…, None, title="
Grid
Table", size=(500,200))
grid
= wx.
grid
.
Grid
(self) table = TestTable()
grid
.SetTable(table, True)…
Re: Grid not displaying
Programming
Web Development
12 Years Ago
by LastMitch
…when you run the code? This is the
Grid
Code: <script type="text/javascript…data.ItemFileReadStore( { data:query99} ); var
grid
= dijit.byId("query99");
grid
.setStore(dataStore); }); </script> …type="text/css" href="./dojox/
grid
/resources/
Grid
.css" /> To this: <…
Re: Grid operations
Programming
Software Development
16 Years Ago
by tillaart36
…file that can be seen as another
grid
. This way the program should be able… to make a new
grid
ánd to read a
grid
that is imported (or loaded…still use the old methods of the
Grid
class like getting a value from this…load = classmethod(load) [/code] ----------------------------------- [code]
grid
=
Grid
.load("test.csv") print…
Re: Grid not displaying
Programming
Web Development
12 Years Ago
by Samyx
Sorry...Everything works but the part that displays the
grid
, it displays the headers for the
grid
but not the data. It is connected to the database.The graph is connected to the database and display with no problems, just the
grid
doesnt.
How to arrange muliple grid in WPF technology
Programming
5 Years Ago
by sanjay.vaniya
<
Grid
> <
Grid
.RowDefinations> <RowDefinations></…<RowDefinations></RowDefinations> </
Grid
.RowDefinations> <
Grid
.ColumnDefinations> <ColumnDefinations></ColumdDefinations&…lt;ColumnDefinations></ColumdDefinations> <
Grid
.ColumnDefinations> <
Grid
> </
Grid
> </
Grid
>
Grid maker
Programming
Software Development
13 Years Ago
by hovestar
…alphabetically I have the code that creates the
grid
, but I have no idea how I… Here is the code that crates the
grid
: [CODE] def
grid
(): y = 5 #int(raw_input("How… tall do you want the
grid
to be?" "(type a to …5 #int(raw_input("How long do you want the
grid
to be?")) a = ''' _____z | |w |…
Re: Grid operations
Programming
Software Development
16 Years Ago
by Gribouillis
… of this class [url]http://wxpython.org/docs/api/wx.
grid
.GridTableBase-class.html[/url], I suppose you can use directly…
Re: Grid data sturcture
Programming
Software Development
13 Years Ago
by TrustyTony
… memory and save to file again. [CODE]import math class
Grid
(list): def __init__(self, cell_value=0, width = 10, height = 10…: res += ' ' + str(row) + ',\n' return res[:-2] +'\n]' __repr__ = __str__
grid
=
Grid
() print
grid
grid
[7][8] = 4 print
grid
grid
.save('
grid
.txt') [/CODE]
Re: Grid maker
Programming
Software Development
13 Years Ago
by woooee
A simple example: [code]def print_grid(a_grid): print "The
Grid
" for row in a_grid: print " |".join(… y = int(raw_input("How tall do you want the
grid
to be?" "(type a to exit) "))… x = int(raw_input("How long do you want the
grid
to be? ")) a_grid = [] for a_row in range(x…
Re: Grid maker
Programming
Software Development
13 Years Ago
by TrustyTony
… everywhere, here is maybe little more conventional way: [CODE]def
grid
(x, y): first = (3* ' ' + ''.join('%c'.center(7…y * rest) % tuple(range(1, y + 1)) print
grid
(3,9) [/CODE][/QUOTE] Putting data in by format string… place markers: [CODE]import string def
grid
(x, y): first = (3* ' ' + ''.join('%c'.center(…
Re: Grid maker
Programming
Software Development
13 Years Ago
by hovestar
… to change something. Here is the real code: [CODE] def
grid
(): y = int(raw_input("How tall do you want the…
grid
to be?" "(type a to exit)")) x = …int(raw_input("How long do you want the
grid
to be?")) a = ''' _____z | |w |____|xy''' for i…
Grid Concept ?
Programming
Software Development
12 Years Ago
by sanghai45
… concept ? How do we make
grid
base game ? then what is Tilebased game…difference ? I know that bomberman,farmville etc are
grid
based game are they called tilebased also ? How… do we create
grid
and place objects on it like framville? If… not wrong there will be for loop if
grid
no of rows and column right ? can …
Re: Grid maker
Programming
Software Development
13 Years Ago
by TrustyTony
… everywhere, here is maybe little more conventional way: [CODE]def
grid
(x, y): first = (3* ' ' + ''.join('%c'.center(7) % (ord('A…' return first + (y * rest) % tuple(range(1, y + 1)) print
grid
(3,9) [/CODE]
Re: Grid maker
Programming
Software Development
13 Years Ago
by woooee
… label it[/quote]The labels would be outside of "
grid
" if you want to use it in a game… as the only time you require labels is when the
grid
is printed.. It is possible, but places unnecessary complexity to…
Re: Grid Control in jsp
Programming
Web Development
14 Years Ago
by manish250
…... Following are easily configurable ways: - 1. Use jquery
GRID
Control 2. sencha extjs (very easy to configure) [B…="http://www.extjs.com/deploy/dev/examples/
grid
/array-
grid
.html"]http://www.extjs.com/deploy/dev/examples…;script type="text/javascript" src="array-
grid
.js"></script> <meta http…
Re: Grid class
Programming
Software Development
14 Years Ago
by hanvyj
…We have to use 2d array to create a
grid
. If anybody knows anyother simple way to design a…thread tell me.[/QUOTE] There is no "
Grid
" class in the java api as far as…it, you are required to make you own "
Grid
" class. A 2D array, is pretty much …, so it will be the main part of your
grid
class. As for this: "If anybody knows…
getting the LIST of empty squares of a grid
Programming
Software Development
13 Years Ago
by jone kim
grid
= [[0,0,0][0,0,0][0,0,0]] user … squaes of the gird. Suppose user has filled:
grid
[col1][row1] ,
grid
[col3][row1],
grid
[col3][row2]. Now I need a list with…
Re: Grid Control in jsp
Programming
Web Development
14 Years Ago
by rakesh4java
… of ways... Following are easily configurable ways: - 1. Use jquery
GRID
Control 2. sencha extjs (very easy to configure) [B][I… following [URL="http://www.extjs.com/deploy/dev/examples/
grid
/array-
grid
.html"]http://www.extjs.com/deploy/dev/examples…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC