EPG Grid Example

Anybody has an example of EPG Grid?

I want to customize (or use as it) this:
https://sdkdocs.roku.com/display/sdkdoc/EPGGrid

I found an example. On the fifth page. Thanks to edskitter

viewtopic.php?f=34&t=88621&start=60

“edskitter” wrote:
epgGridScene.xml

 




EpgGrid.xml

 



main.brs

'********** Copyright 2015 Roku Corp.  All Rights Reserved. **********

sub Main()
	showChannelSGScreen()
end sub

sub showChannelSGScreen()
	print "in showChannelSGScreen"
	screen = CreateObject("roSGScreen")
	m.port = CreateObject("roMessagePort")
	screen.setMessagePort(m.port)
	scene = screen.CreateScene("epgGridScene")
	screen.show()

	while(true)

		msg = wait(0, m.port)
		msgType = type(msg)

		if msgType = "roSGScreenEvent"

			if msg.isScreenClosed()
				print "screen closed"
			 return
			 end if

		end if

	end while
end sub

I can get the EPG to render but I can not get the grid to have focus to move up / down / left / right. What am I missing?

I am currently using EPG Grid based on your example. But I need to do some customizations in the EPG Grid (i.e)

How to hide blue colour vertical time line bar in the grid ? &

How to center align the Channel Logo in the First column?

“dreamer2057” wrote:
I found an example. On the fifth page. Thanks to edskitter

viewtopic.php?f=34&t=88621&start=60

“edskitter” wrote:
epgGridScene.xml

 




EpgGrid.xml

 



main.brs

'********** Copyright 2015 Roku Corp.  All Rights Reserved. **********

sub Main()
 showChannelSGScreen()
end sub

sub showChannelSGScreen()
 print "in showChannelSGScreen"
 screen = CreateObject("roSGScreen")
 m.port = CreateObject("roMessagePort")
 screen.setMessagePort(m.port)
 scene = screen.CreateScene("epgGridScene")
 screen.show()

 while(true)

 msg = wait(0, m.port)
 msgType = type(msg)

 if msgType = "roSGScreenEvent"

 if msg.isScreenClosed()
 print "screen closed"
 return
 end if

 end if

 end while
end sub

I can get the EPG to render but I can not get the grid to have focus to move up / down / left / right. What am I missing?
How can i get a link list with your epg and select to play the video

How i can use this code to make My EPG using XMl feed or JSON Feed